type net/http.conn

18 uses

	net/http (current package)
		server.go#L254: type conn struct {
		server.go#L310: func (c *conn) hijacked() bool {
		server.go#L317: func (c *conn) hijackLocked() (rwc net.Conn, buf *bufio.ReadWriter, err error) {
		server.go#L425: 	conn             *conn
		server.go#L631: func (srv *Server) newConn(rwc net.Conn) *conn {
		server.go#L632: 	c := &conn{
		server.go#L655: 	conn *conn
		server.go#L1019: func (c *conn) readRequest(ctx context.Context) (w *response, err error) {
		server.go#L1780: func (c *conn) finalFlush() {
		server.go#L1798: func (c *conn) close() {
		server.go#L1828: func (c *conn) closeWriteAndWait() {
		server.go#L1873: func (c *conn) setState(nc net.Conn, state ConnState, runHook bool) {
		server.go#L1894: func (c *conn) getState() (state ConnState, unixSec int64) {
		server.go#L1937: func (c *conn) serve(ctx context.Context) {
		server.go#L2984: 	activeConn map[*conn]struct{}
		server.go#L3433: func (s *Server) trackConn(c *conn, add bool) {
		server.go#L3437: 		s.activeConn = make(map[*conn]struct{})
		server.go#L3868: 	c *conn